home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / util / moni / Scout-src.lha / source / system_headers.h < prev   
Encoding:
C/C++ Source or Header  |  2002-02-13  |  5.3 KB  |  190 lines

  1. /*
  2.  * $Id: system_headers.h,v 1.3 2002/02/13 13:46:05 tboeckel Exp $
  3.  *
  4.  * :ts=4
  5.  *
  6.  * SMB file system wrapper for AmigaOS, using the AmiTCP V3 API
  7.  *
  8.  * Copyright (C) 2000 by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24.  
  25. #ifndef _SYSTEM_HEADERS_H
  26. #define _SYSTEM_HEADERS_H 1
  27.  
  28. #define __USE_SYSBASE
  29.  
  30. /*****************************************************************************/
  31.  
  32. #define NULL ((APTR)0L)
  33. #include <exec/types.h>
  34.  
  35. /*****************************************************************************/
  36.  
  37. #define USE_BUILTIN_MATH 1
  38. #include <string.h>
  39.  
  40. /*****************************************************************************/
  41.  
  42. #include <exec/types.h>
  43. #include <exec/execbase.h>
  44. #include <exec/tasks.h>
  45. #include <exec/memory.h>
  46. #include <exec/alerts.h>
  47. #include <exec/ports.h>
  48. #include <exec/libraries.h>
  49. #include <exec/semaphores.h>
  50. #include <exec/resident.h>
  51. #include <dos/datetime.h>
  52. #include <dos/dos.h>
  53. #include <dos/filehandler.h>
  54. #include <dos/dosextens.h>
  55. #include <dos/rdargs.h>
  56. #include <dos/dosasl.h>
  57. #include <graphics/gfxbase.h>
  58. #include <graphics/gfxmacros.h>
  59. #include <graphics/gfx.h>
  60. #include <graphics/gfxnodes.h>
  61. #include <graphics/displayinfo.h>
  62. #include <graphics/monitor.h>
  63. #include <graphics/layers.h>
  64. #include <intuition/intuitionbase.h>
  65. #include <intuition/intuition.h>
  66. #include <intuition/screens.h>
  67. #include <intuition/sghooks.h>
  68. #include <devices/ahi.h>
  69. #include <devices/audio.h>
  70. #include <devices/cd.h>
  71. #include <devices/clipboard.h>
  72. #include <devices/console.h>
  73. #include <devices/gameport.h>
  74. #include <devices/input.h>
  75. #include <devices/keyboard.h>
  76. #include <devices/parallel.h>
  77. #include <devices/printer.h>
  78. #include <devices/sana2.h>
  79. #include <devices/scsidisk.h>
  80. #include <devices/serial.h>
  81. #include <devices/timer.h>
  82. #include <devices/trackdisk.h>
  83. #include <devices/newstyle.h>
  84. #include <libraries/configvars.h>
  85. #include <libraries/commodities.h>
  86. #include <libraries/commodities_private.h>
  87. #include <libraries/expansion.h>
  88. #include <libraries/expansionbase.h>
  89. #include <libraries/identify.h>
  90. #include <libraries/usergroup.h>
  91. #include <libraries/mui.h>
  92. #include <rexx/rxslib.h>
  93. #include <resources/misc.h>
  94. #include <resources/cia.h>
  95. #include <resources/filesysres.h>
  96. #include <resources/card.h>
  97. #include <resources/disk.h>
  98. #include <sys/types.h>
  99. #include <sys/socket.h>
  100. #include <sys/syslog.h>
  101. #include <sys/time.h>
  102. #include <utility/utility.h>
  103. #include <utility/tagitem.h>
  104. #include <workbench/icon.h>
  105. #include <workbench/startup.h>
  106. #include <workbench/workbench.h>
  107. #include <netinet/in.h>
  108.  
  109. #include <clib/alib_protos.h>
  110. #include <proto/asl.h>
  111. #include <proto/cia.h>
  112. #include <proto/diskfont.h>
  113. #include <proto/dos.h>
  114. #include <proto/exec.h>
  115. #include <proto/expansion.h>
  116. #include <proto/gadtools.h>
  117. #include <proto/graphics.h>
  118. #include <proto/icon.h>
  119. #include <proto/identify.h>
  120. #include <proto/layers.h>
  121. #include <proto/commodities.h>
  122. #include <proto/intuition.h>
  123. #include <proto/muimaster.h>
  124. #include <proto/rexxsyslib.h>
  125. #include <proto/usergroup.h>
  126. #include <proto/utility.h>
  127. #include <proto/misc.h>
  128. #include <proto/timer.h>
  129. #include <proto/socket.h>
  130.  
  131. #include <dos.h>
  132. #include <ctype.h>
  133. #include <netdb.h>
  134. #include <stdarg.h>
  135. #include <stdlib.h>
  136. #include <string.h>
  137. #include <stdio.h>
  138. #include <fcntl.h>
  139. #include <ios1.h>
  140.  
  141. #include "scout_defs.h"
  142. #include "scout_logo.h"
  143. #include "scout_protos.h"
  144. #include "scout_net_protos.h"
  145. #include "scout_asm_protos.h"
  146. #include "scout_allocations_protos.h"
  147. #include "scout_extras_protos.h"
  148. #include "scout_expansions_protos.h"
  149. #include "scout_flags_protos.h"
  150. #include "scout_fonts_protos.h"
  151. #include "scout_libs_protos.h"
  152. #include "scout_locks_protos.h"
  153. #include "scout_interrupts_protos.h"
  154. #include "scout_inputhandlers_protos.h"
  155. #include "scout_residents_protos.h"
  156. #include "scout_ports_protos.h"
  157. #include "scout_semaphores_protos.h"
  158. #include "scout_tasks_protos.h"
  159. #include "scout_windows_protos.h"
  160. #include "scout_memory_protos.h"
  161. #include "scout_lowmemory_protos.h"
  162. #include "scout_mount_protos.h"
  163. #include "scout_commands_protos.h"
  164. #include "scout_arexx_protos.h"
  165. #include "scout_assigns_protos.h"
  166. #include "scout_commodity_protos.h"
  167. #include "scout_screenmode_protos.h"
  168. #include "scout_classes_protos.h"
  169. #include "scout_system_protos.h"
  170. #include "scout_timer_protos.h"
  171. #include "scout_vectors_protos.h"
  172. #include "scout_print_protos.h"
  173. #include "scout_version_protos.h"
  174.  
  175. #include "startup_protos.h"
  176. #include "startup_defs.h"
  177.  
  178. #include "i64.h"
  179. #include <tblib.h>
  180.  
  181. #include "scout_customclasses.h"
  182. #include "fontdisplay_class.h"
  183.  
  184. #include <pragmas/identify_pragmas.h>
  185. #include <pragmas/cia_private_pragmas.h>
  186.  
  187. /*****************************************************************************/
  188.  
  189. #endif /* _SYSTEM_HEADERS_H */
  190.